time.Location.lookup (method)

12 uses

	time (current package)
		format.go#L1396: 		name, offset, _, _, _ := local.lookup(t.unixSec())
		format_rfc3339.go#L146: 		if _, offset, _, _, _ := local.lookup(t.unixSec()); offset == zoneOffset {
		time.go#L776: 			_, offset, _, _, _ := l.lookup(sec)
		time.go#L797: 			name, offset, _, _, _ = l.lookup(sec)
		time.go#L1397: 	name, offset, _, _, _ = t.loc.lookup(t.unixSec())
		time.go#L1407: 	_, _, startSec, endSec, _ := t.loc.lookup(t.unixSec())
		time.go#L1557: 	} else if _, localoff, _, _, _ := Local.lookup(t.unixSec()); offset == localoff {
		time.go#L1675: 	_, _, _, _, isDST := t.loc.lookup(t.Unix())
		time.go#L1752: 	_, offset, start, end, _ := loc.lookup(unix)
		time.go#L1758: 			_, offset, _, _, _ = loc.lookup(utc)
		zoneinfo.go#L149: func (l *Location) lookup(sec int64) (name string, offset int, start, end int64, isDST bool) {
		zoneinfo.go#L621: 			nam, offset, _, _, _ := l.lookup(unix - int64(zone.offset))